Install KVM
2015/05/07 |
It's Virtualization with KVM ( Kernel-based Virtual Machine ) + QEMU.
This requires that the CPU on your computer has a function Intel VT or AMD-V.
|
|
[1] | Install required packages. |
root@dlp:~# aptitude -y install qemu-kvm libvirt-bin virtinst bridge-utils
|
[2] | Enable vhost-net. |
root@dlp:~# modprobe vhost_net root@dlp:~# lsmod | grep vhost vhost_net 17307 0 tun 26385 1 vhost_net vhost 22500 1 vhost_net macvtap 17526 1 vhost_netroot@dlp:~# echo vhost_net >> /etc/modules |
[3] | Configure Bridge networking. |
root@dlp:~#
vi /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 # change like follows iface eth0 inet manual # iface eth0 inet static# address 10.0.0.30# network 10.0.0.0# netmask 255.255.255.0# broadcast 10.0.0.255# gateway 10.0.0.1# dns-nameservers 10.0.0.30
# add bridge interface
iface br0 inet static
address 10.0.0.30 network 10.0.0.0 netmask 255.255.255.0 broadcast 10.0.0.255 gateway 10.0.0.1 dns-nameservers 10.0.0.30 bridge_ports eth0 bridge_stp off auto br0
root@dlp:~#
root@dlp:~# br0 Link encap:Ethernet HWaddr 00:0c:29:9d:56:58 inet addr:10.0.0.30 Bcast:10.0.0.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:fe9d:5658/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:64 errors:0 dropped:0 overruns:0 frame:0 TX packets:94 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:6391 (6.2 KiB) TX bytes:10887 (10.6 KiB) eth0 Link encap:Ethernet HWaddr 00:0c:29:9d:56:58 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:117 errors:0 dropped:0 overruns:0 frame:0 TX packets:94 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:10936 (10.6 KiB) TX bytes:11019 (10.7 KiB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) |